.section-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    width: 100%;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    margin: 15px auto 0; 
}

#full-brief-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

.brief-archive-card {
    display: flex;
    flex-direction: column;
    height: 550px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin-bottom: 25px;
}

.brief-card-image {
    width: 100%;
    height: 250px;
    flex-shrink: 0;
    overflow: hidden;
    background-color: #f0f0f0;
}

.brief-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}

.brief-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-height: 0; 
}

.brief-archive-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.brief-archive-card small {
    display: block;
    color: #888;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.brief-archive-card h3 {
    color: #1a1a1a;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.brief-archive-card .read-more {
    background-color: #004d26;
    color: white;
    padding: 8px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: bold;
    display: inline-block;
    transition: background 0.3s;
}

.brief-archive-card .read-more:hover {
    background-color: #00331a;
}

/* Breaking News Page Specifics */
#breaking-archive-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Exactly two columns */
    gap: 15px; /* Space between cards */
    max-width: 900px; /* Limits overall width to keep cards small */
    margin: 0 auto; /* Centers the grid */
}

#breaking-archive-container .brief-archive-card {
    padding: 15px;
    margin-bottom: 0;
    height: auto;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#breaking-archive-container small {
    color: var(--green);
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
}

#breaking-archive-container h3 {
    font-size: 1.1rem !important; /* Smaller headlines */
    margin: 8px 0;
    line-height: 1.2;
}

#breaking-archive-container .brief-summary {
    font-size: 0.9rem !important; /* Smaller summary text */
    padding-top: 8px;
    margin-top: 8px;
}

#breaking-archive-container small {
    font-size: 0.75rem; /* Tiny date text */
}

@media (min-width: 768px) {
    #full-brief-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 500px) {
    #breaking-archive-container {
        grid-template-columns: 1fr;
    }
}
